<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head profile="http://gmpg.org/xfn/11">



<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>  2010  !!! | DZweb.ru</title>

<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">



<link rel="stylesheet" href="css/wp125.css" type="text/css" media="screen">
<link rel="stylesheet" id="wp-polls-css" href="css/polls-css.css" type="text/css" media="all">
<link rel="stylesheet" id="wp-postratings-css" href=css/postratings-css.css" type="text/css" media="all">
<link rel="stylesheet" id="sociable-front-css-css" href="css/sociable.css" type="text/css" media="">


	<link rel="stylesheet" href="css/slideshow.css" type="text/css" media="screen">
	<!-- End Of Script Generated By Post-Thumb Revisited Library -->

<!-- All in One SEO Pack 1.6.8.1 by Michael Torbert of Semper Fi Web Design design-studio.at.ua [301,318] -->
<meta name="description" content="Demo Blog">
<meta name="keywords" content="Demo Blog">

<!-- /all in one seo pack -->
<link rel="stylesheet" href="css/nospamnx.css" type="text/css">
<style type="text/css">
.wp-polls .pollbar {
	margin: 1px;
	font-size: 6px;
	line-height: 8px;
	height: 8px;
	background-image: url('images/default/pollbg.gif');
	border: 1px solid #c8c8c8;
}
</style>

<script type="text/javascript">
/*
   DHTML PNG Snowstorm! OO-style Jascript-based Snow effect
   --------------------------------------------------------
   Version 1.2.20041121a
   Dependencies: GIF/PNG images (0 through 4.gif/png)
   Code by Scott Schiller - design-studio.at.ua
   --------------------------------------------------------
   Description:
  
   Initializes after body onload() by default (via addEventHandler() call at bottom.)
  
   Properties:
  
   usePNG
   ---------------
   Enables PNG images if supported ("false" disables all PNG usage)
  
   flakeTypes
   ---------------
   Sets the range of flake images to use (eg. a value of 5
   will use images ranging from 0.png to 4.png.)
  
   flakesMax
   ---------------
   Sets the maximum number of snowflakes that can exist on
   the screen at any given time.
   
   flakesMaxActive
   ---------------
   Sets the limit of "falling" snowflakes (ie. moving, thus
   considered to be "active".)
  
   vMax
   ---------------
   Defines the maximum X and Y velocities for the storm.
   A range up to this value is selected at random.
  
   flakeWidth
   ---------------
   The width (in pixels) of each snowflake image.
  
   flakeHeight
   ---------------
   Height (pixels) of each snowflake image.
   
   flakeBottom
   ---------------
   Limits the "bottom" coordinate of the snow.
  
   snowCollect
   ---------------
   Enables snow to pile up (slowly) at bottom of window.
   Can be very CPU/resource-intensive over time.

*/

var snowStorm = null;

function SnowStorm() {
  var s = this;
  var storm = this;
  this.timers = [];
  this.flakes = [];
  this.disabled = false;
  this.terrain = [];

  // User-configurable variables
  // ---------------------------

  var usePNG = true;
  var imagePath = 'images/snow/'; // relative path to snow images
  var flakeTypes = 6;
  var flakesMax = 128;
  var flakesMaxActive = 64;
  var vMax = 2.5;
  var flakeWidth = 5;
  var flakeHeight = 5;
  var flakeBottom = null; // Integer for fixed bottom, 0 or null for "full-screen" snow effect
  var snowCollect = true;
  var showStatus = true;

  // --- End of user section ---

  var isIE = (navigator.appName.toLowerCase().indexOf('internet explorer')+1);
  var isWin9X = (navigator.appVersion.toLowerCase().indexOf('windows 98')+1);
  var isOpera = (navigator.userAgent.toLowerCase().indexOf('opera ')+1 || navigator.userAgent.toLowerCase().indexOf('opera/')+1);
  if (isOpera) isIE = false; // Opera (which is sneaky, pretending to be IE by default)
  var screenX = null;
  var screenY = null;
  var scrollY = null;
  var vRndX = null;
  var vRndY = null;

  function rnd(n,min) {
    if (isNaN(min)) min = 0;
    return (Math.random()*n)+min;
  }

  this.randomizeWind = function() {
    vRndX = plusMinus(rnd(vMax,0.2));
    vRndY = rnd(vMax,0.2);
    if (this.flakes) {
      for (var i=0; i<this.flakes.length; i++) {
        if (this.flakes[i].active) this.flakes[i].setVelocities();
      }
    }
  }

  function plusMinus(n) {
    return (parseInt(rnd(2))==1?n*-1:n);
  }

  this.resizeHandler = function() {
    if (window.innerWidth || window.innerHeight) {
      screenX = window.innerWidth-(!isIE?24:2);
      screenY = (flakeBottom?flakeBottom:window.innerHeight);
    } else {
      screenX = (document.documentElement.clientWidth||document.body.clientWidth||document.body.scrollWidth)-(!isIE?8:0);
      screenY = flakeBottom?flakeBottom:(document.documentElement.clientHeight||document.body.clientHeight||document.body.scrollHeight);
    }
    s.scrollHandler();
  }

  this.scrollHandler = function() {
    // "attach" snowflakes to bottom of window if no absolute bottom value was given
    scrollY = (flakeBottom?0:parseInt(window.scrollY||document.documentElement.scrollTop||document.body.scrollTop));
    if (isNaN(scrollY)) scrollY = 0; // Netscape 6 scroll fix
    if (!flakeBottom && s.flakes) {
      for (var i=0; i<s.flakes.length; i++) {
        if (s.flakes[i].active == 0) s.flakes[i].stick();
      }
    }
  }

  this.freeze = function() {
    // pause animation
    if (!s.disabled) {
      s.disabled = 1;
    } else {
      return false;
    }
    if (!isWin9X) {
      clearInterval(s.timers);
    } else {
      for (var i=0; i<s.timers.length; i++) {
        clearInterval(s.timers[i]);
      }
    }
  }

  this.resume = function() {
    if (s.disabled) {
       s.disabled = 0;
    } else {
      return false;
    }
    s.timerInit();
  }

  this.stop = function() {
    this.freeze();
    for (var i=0; i<this.flakes.length; i++) {
      this.flakes[i].o.style.display = 'none';
    }
    removeEventHandler(window,'scroll',this.scrollHandler,false);
    removeEventHandler(window,'resize',this.resizeHandler,false);
  }

  this.SnowFlake = function(parent,type,x,y) {
    var s = this;
    var storm = parent;
    this.type = type;
    this.x = x||parseInt(rnd(screenX-12));
    this.y = (!isNaN(y)?y:-12);
    this.vX = null;
    this.vY = null;
    this.vAmpTypes = [2.0,1.0,1.25,1.0,1.5,1.75]; // "amplification" for vX/vY (based on flake size/type)
    this.vAmp = this.vAmpTypes[this.type];

    this.active = 1;
    this.o = document.createElement('img');
    this.o.style.position = 'absolute';
    this.o.style.width = flakeWidth+'px';
    this.o.style.height = flakeHeight+'px';
    this.o.style.fontSize = '1px'; // so IE keeps proper size
    this.o.style.zIndex = 2;
    this.o.src = imagePath+this.type+(pngHandler.supported && usePNG?'.png':'.gif');
    document.body.appendChild(this.o);
    if (pngHandler.supported && usePNG) pngHandler.transform(this.o);

    this.refresh = function() {
      this.o.style.left = this.x+'px';
      this.o.style.top = this.y+'px';
    }

    this.stick = function() {
      s.o.style.top = (screenY+scrollY-flakeHeight-storm.terrain[Math.floor(this.x)])+'px';
      // called after relative left has been called
    }

    this.vCheck = function() {
      if (this.vX>=0 && this.vX<0.2) {
        this.vX = 0.2;
      } else if (this.vX<0 && this.vX>-0.2) {
        this.vX = -0.2;
      }
      if (this.vY>=0 && this.vY<0.2) {
        this.vY = 0.2;
      }
    }

    this.move = function() {
      this.x += this.vX;
      this.y += (this.vY*this.vAmp);
      this.refresh();

      if (this.vX && screenX-this.x<flakeWidth+this.vX) { // X-axis scroll check
        this.x = 0;
      } else if (this.vX<0 && this.x<0-flakeWidth) {
        this.x = screenX-flakeWidth; // flakeWidth;
      }
      var yDiff = screenY+scrollY-this.y-storm.terrain[Math.floor(this.x)];
      if (yDiff<flakeHeight) {
        this.active = 0;
        if (snowCollect) {
          var height = [0.75,1.5,0.75];
          for (var i=0; i<2; i++) {
            storm.terrain[Math.floor(this.x)+i+2] += height[i];
          }
        }
        this.o.style.left = ((this.x-(!isIE?flakeWidth:0))/screenX*100)+'%'; // set "relative" left (change with resize)
        if (!flakeBottom) {
          this.stick();
        }
      }
    }

    this.animate = function() {
      // main animation loop
      // move, check status, die etc.
      this.move();
    }

    this.setVelocities = function() {
      this.vX = vRndX+rnd(vMax*0.12,0.1);
      this.vY = vRndY+rnd(vMax*0.12,0.1);
    }

    this.recycle = function() {
      this.setVelocities();
      this.vCheck();
      this.x = parseInt(rnd(screenX-flakeWidth-1));
      this.y = parseInt(rnd(640)*-1)-flakeHeight;
      this.active = 1;
    }

    this.recycle(); // set up x/y coords etc.
    this.refresh();

  }

  this.snow = function() {
    var active = 0;
    var used = 0;
    var waiting = 0;
    for (var i=this.flakes.length-1; i>0; i--) {
      if (this.flakes[i].active == 1) {
        this.flakes[i].animate();
        active++;
      } else if (this.flakes[i].active == 0) {
        used++;
      } else {
        waiting++;
      }
    }
    if (snowCollect && !waiting) { // !active && !waiting
      // create another batch of snow
      this.createSnow(flakesMaxActive,true);
    }
    if (active<flakesMaxActive) {
      with (this.flakes[parseInt(rnd(this.flakes.length))]) {
        if (!snowCollect && active == 0) {
          recycle();
        } else if (active == -1) {
          active = 1;
        }
      }
    }
  }

  this.createSnow = function(limit,allowInactive) {
    if (showStatus) window.status = 'Creating snow...';
    for (var i=0; i<limit; i++) {
      this.flakes[this.flakes.length] = new this.SnowFlake(this,parseInt(rnd(flakeTypes)));
      if (allowInactive || i>flakesMaxActive) this.flakes[this.flakes.length-1].active = -1;
    }
    if (showStatus) window.status = '';
  }

  this.timerInit = function() {
    this.timers = (!isWin9X?setInterval("snowStorm.snow()",20):[setInterval("snowStorm.snow()",75),setInterval("snowStorm.snow()",25)]);
  }

  this.init = function() {
    for (var i=0; i<8192; i++) {
      this.terrain[i] = 0;
    }
    this.randomizeWind();
    this.createSnow(snowCollect?flakesMaxActive:flakesMaxActive*2); // create initial batch
    addEventHandler(window,'resize',this.resizeHandler,false);
    addEventHandler(window,'scroll',this.scrollHandler,false);
    // addEventHandler(window,'scroll',this.resume,false); // scroll does not cause window focus. (odd)
    // addEventHandler(window,'blur',this.freeze,false);
    // addEventHandler(window,'focus',this.resume,false);
    this.timerInit();
  }

  this.resizeHandler(); // get screen coordinates

  if (screenX && screenY && !this.disabled) {
    this.init();
  }

}

function snowStormInit() {
  setTimeout("snowStorm = new SnowStorm()",500);
}

// Generic addEventHandler() wrapper
// ---------------------------------
// A generic interface for adding DOM event handlers
// Version 1.2.20040404
//
// Code by Scott Schiller | schillmania.com
//
// Revision history:
// ---------------------------------
// v1.1.20031218: initial deploy
// v1.2.20040404: added post-load event check

var addEventHandler = null;
var removeEventHandler = null;

function postLoadEvent(eventType) {
  // test for adding an event to the body (which has already loaded) - if so, fire immediately
  return ((eventType.toLowerCase().indexOf('load')>=0) && document.body);
}

function addEventHandlerDOM(o,eventType,eventHandler,eventBubble) {
  if (!postLoadEvent(eventType)) {
    o.addEventListener(eventType,eventHandler,eventBubble);
  } else {
    eventHandler();
  }
}

function removeEventHandlerDOM(o,eventType,eventHandler,eventBubble) {
  o.removeEventListener(eventType,eventHandler,eventBubble);
}
  
function addEventHandlerIE(o,eventType,eventHandler) { // IE workaround
  if (!eventType.indexOf('on')+1) eventType = 'on'+eventType;
  if (!postLoadEvent(eventType)) {
    o.attachEvent(eventType,eventHandler); // Note addition of "on" to event type
  } else {
    eventHandler();
  }
}
  
function removeEventHandlerIE(o,eventType,eventHandler) {
  if (!eventType.indexOf('on')+1) eventType = 'on'+eventType;
  o.detachEvent(eventType,eventHandler);
}

function addEventHandlerOpera(o,eventType,eventHandler,eventBubble) {
  if (!postLoadEvent(eventType)) {
    (o==window?document:o).addEventListener(eventType,eventHandler,eventBubble);
  } else {
    eventHandler();
  }
}

function removeEventHandlerOpera(o,eventType,eventHandler,eventBubble) {
  (o==window?document:o).removeEventListener(eventType,eventHandler,eventBubble);
}

if (navigator.userAgent.toLowerCase().indexOf('opera ')+1 || navigator.userAgent.toLowerCase().indexOf('opera/')+1) {
  // opera is dumb at times.
  addEventHandler = addEventHandlerOpera;
  removeEventHandler = removeEventHandlerOpera;
} else if (document.addEventListener) { // DOM event handler method
  addEventHandler = addEventHandlerDOM;
  removeEventHandler = removeEventHandlerDOM;
} else if (document.attachEvent) { // IE event handler method
  addEventHandler = addEventHandlerIE;
  removeEventHandler = removeEventHandlerIE;
} else { // Neither "DOM level 2" (?) methods supported
  addEventHandler = function(o,eventType,eventHandler,eventBubble) {
    o['on'+eventType] = eventHandler;
    // Multiple events could be added here via array etc.
  }
  removeEventHandler = function(o,eventType,eventHandler,eventBubble) {}
}

// Safari 1.0 does not support window.scroll events - apparently netscape 6.0/6.2 and mozilla 1.4 also.
// Refer to events support table at http://www.quirksmode.org/js/events_compinfo.html

// -- end addEventHandler definition --

/*
   PNGHandler: Object-Oriented Javascript-based PNG wrapper
   --------------------------------------------------------
   Version 1.2.20040803
   Code by Scott Schiller - design-studio.at.ua
   --------------------------------------------------------
   Description:
   Provides gracefully-degrading PNG functionality where
   PNG is supported natively or via filters (Damn you, IE!)
   Should work with PNGs as images and DIV background images.
   --------------------------------------------------------
   Revision history
   --------------------------------------------------------
   1.2
   - Added refresh() for changing PNG images under IE
   - Class extension: "scale" causes PNG to scale under IE
   --------------------------------------------------------
   Known bugs
   --------------------------------------------------------
   - ie:mac doesn't support PNG background images.
   - Safari doesn't support currentStyle() - can't parse BG
     via CSS (ie. for a DIV with a PNG background by class)

*/

function PNGHandler() {
  var self = this;

  this.na = navigator.appName.toLowerCase();
  this.nv = navigator.appVersion.toLowerCase();
  this.isIE = this.na.indexOf('internet explorer')+1?1:0;
  this.isWin = this.nv.indexOf('windows')+1?1:0;
  this.isIEMac = (this.isIE&&!this.isWin);
  this.isIEWin = (this.isIE&&this.isWin);
  this.ver = this.isIE?parseFloat(this.nv.split('msie ')[1]):parseFloat(this.nv);
  this.isMac = this.nv.indexOf('mac')+1?1:0;
  this.isOpera = (navigator.userAgent.toLowerCase().indexOf('opera ')+1 || navigator.userAgent.toLowerCase().indexOf('opera/')+1);
  if (this.isOpera) this.isIE = false; // Opera filter catch (which is sneaky, pretending to be IE by default)
  this.filterID = 'DXImageTransform.Microsoft.AlphaImageLoader';
  this.supported = false;
  this.transform = self.doNothing;

  this.filterMethod = function(o) {
    // IE 5.5+ proprietary filter garbage (boo!)
    // Create new element based on old one. Doesn't seem to render properly otherwise (due to filter?)
    // use DOM "currentStyle" method, so rules inherited via CSS are picked up.
    if (o.nodeName != 'IMG') {
      var b = o.currentStyle.backgroundImage.toString(); // parse out background image URL
      o.style.backgroundImage = 'none';
      // Parse out background image URL from currentStyle.
      var i1 = b.indexOf('url("')+5;
      var newSrc = b.substr(i1,b.length-i1-2).replace('.gif','.png'); // find first instance of ") after (", chop from string
      o.style.writingMode = 'lr-tb'; // Has to be applied so filter "has layout" and is displayed. Seriously. Refer to 

http://msdn.microsoft.com/workshop/author/filter/reference/filters/alphaimageloader.asp?frame=true
      o.style.filter = "progid:"+self.filterID+"(src='"+newSrc+"',sizingMethod='"+(o.className.indexOf('scale')+1?'scale':'crop')+"')";
    } else if (o.nodeName == 'IMG') {
      var newSrc = o.getAttribute('src').replace('.gif','.png');
      // apply filter
      o.src = 'images/none.gif'; // get rid of image
      o.style.filter = "progid:"+self.filterID+"(src='"+newSrc+"',sizingMethod="+(o.className.indexOf('scale')+1?'scale':'crop')+"')";
      o.style.writingMode = 'lr-tb'; // Has to be applied so filter "has layout" and is displayed. Seriously. Refer to 

http://msdn.microsoft.com/workshop/author/filter/reference/filters/alphaimageloader.asp?frame=true
    }
  }

  this.pngMethod = function(o) {
    // Native transparency support. Easy to implement. (woo!)
    bgImage = this.getBackgroundImage(o);
    if (bgImage) {
      // set background image, replacing .gif
      o.style.backgroundImage = 'url('+bgImage.replace('.gif','.png')+')';
    } else if (o.nodeName == 'IMG') {
      o.src = o.src.replace('.gif','.png');
    } else if (!bgImage) {
      // no background image
    }
  }

  this.getBackgroundImage = function(o) {
    var b, i1; // background-related variables
    var bgUrl = null;
    if (o.nodeName != 'IMG' && !(this.isIE && this.isMac)) { // ie:mac PNG support broken for DIVs with PNG backgrounds
      if (document.defaultView) {
        if (document.defaultView.getComputedStyle) {
          b = document.defaultView.getComputedStyle(o,'').getPropertyValue('background-image');
          i1 = b.indexOf('url(')+4;
          bgUrl = b.substr(i1,b.length-i1-1);
        } else {
          // no computed style
          return false;
        }
      } else {
        // no default view
        return false;
      }
    }
    return bgUrl;
  }

  this.doNothing = function() {}
  
  this.supportTest = function() {
    // Determine method to use.
    // IE 5.5+/win32: filter

    if (this.isIE && this.isWin && this.ver >= 5.5) {
      // IE proprietary filter method (via DXFilter)
      self.transform = self.filterMethod;
    } else if (!this.isIE && this.ver < 5) {
      // No PNG support or broken support
      // Leave existing content as-is
      self.transform = null;
      return false;
    } else if (!this.isIE && this.ver >= 5 || (this.isIE && this.isMac && this.ver >= 5)) { // version 5+ browser (not IE), or IE:mac 5+
      self.transform = self.pngMethod;
    } else {
      // Presumably no PNG support. GIF used instead.
      self.transform = null;
      return false;
    }
    return true;
  }

  this.init = function() {
    this.supported = this.supportTest();
  }

}

function getElementsByClassName(className,oParent) {
  var doc = (oParent||document);
  var matches = [];
  var nodes = doc.all||doc.getElementsByTagName('*');
  for (var i=0; i<nodes.length; i++) {
    if (nodes[i].className == className || nodes[i].className.indexOf(className)+1 || nodes[i].className.indexOf(className+' ')+1 || nodes[i].className.indexOf(' 

'+className)+1) {
      matches[matches.length] = nodes[i];
    }
  }
  return matches; // kids, don't play with fire. ;)
}

// Instantiate and initialize PNG Handler

var pngHandler = new PNGHandler();

pngHandler.init();


addEventHandler(window,'load',snowStormInit,false);

</script>

</head><body class="home blog">


<!-- Top START -->
	<div id="box1a">
		<div class="box1b">
		
			<!-- Social Bookmarking START -->
			<div class="box2a">
<a href=""><img src="images/0.gif" alt="" border="0" height="18" width="13"></a><img src="images/0.gif" alt="santa claus" border="0" height="18" width="5"><a 

href="><img src="images/0.gif" alt="" border="0" height="18" width="13"></a><img src="images/0.gif" alt="santa claus" border="0" height="18" width="5"><a 

href=""><img src="images/0.gif" alt="" border="0" height="18" width="13"></a><img src="images/0.gif" alt="santa claus" border="0" height="18" width="23">		

	</div>
			<!-- Social Bookmarking END -->		
		
			<!-- Logo and AdSense START -->		
			<table border="0" cellpadding="0" cellspacing="0" height="182" width="990"><tbody><tr><td align="left" valign="top" width="444">
			
			<a href=""><img src="images/0.gif" alt="Home" border="0" height="180" width="440"></a>
			
			</td><td align="left" valign="top" width="546">
	
			<div class="box3c">  </div>
	
			</td></tr></tbody></table>
			<!-- Logo and AdSense END -->	
				
		</div>
	</div>
<!-- Top END -->

<!-- Navigation START -->
	<div id="navigation1">
		<table class="navigation2" border="0" cellpadding="0" cellspacing="0" height="44" width="990"><tbody><tr><td class="navigation3" align="left" 

valign="top">
			<ul>
			<li style="border-left: medium none; border-right: medium none;"><img src="images/0.gif" alt="black friday" title="black friday" height="1" 

width="55"></li>
			<li style="border-left: medium none;"><a href=""></a></li>
			<li class="page_item page-item-2"><a href=""> </a></li>
			<li class="page_item page-item-7"><a href=""></a></li>

			<li style="border-right: medium none;"><img src="images/0.gif" alt="black friday" title="black friday" height="28" width="1"></li>
			</ul>
		</td></tr></tbody></table>
	</div>
<!-- Navigation END -->

<!-- Blank --><div style="height: 21px;"><img src="images/0.gif" alt="santa claus" title="santa claus"></div>

<!-- Grid for content and sidebar START -->
	<div id="grid1">
		<table border="0" cellpadding="0" cellspacing="0" width="990">
			<tbody><tr>
				<td align="left" valign="top" width="655">

		<!-- White START -->
		<div class="box4a">
		<div class="box4b">
		<div class="box4c">
									
					<!-- index.php START -->		




								
	<div id="content" class="narrowcolumn">

	
	
	<div class="post-57 post hentry category-one-grandchild-category tag-2-columns tag-clean tag-fixed-width tag-gray tag-left-sidebar tag-orange tag-others 

tag-square-corner" id="post-57">





								
					
		<!-- Loop START -->
		  <table border="0" cellpadding="0" cellspacing="0" width="568">
            <tbody><tr>
              [BODY]
		</tbody></table>
		</div>
		</div>
		</div>
		<!-- Blank --><div style="height: 30px;"><img src="images/0.gif" alt="&lt;br /&gt;
&lt;b&gt;Warning&lt;/b&gt;:  

include(/home/merahn/public_html/demo/wp-content/themes/santa-claus/template/alt.php) [&lt;a href='function.include'&gt;function.include&lt;/a&gt;]: failed to open 

stream: No such file or directory in &lt;b&gt;/home/merahn/public_html/demo/wp-content/themes/santa-claus/index.php&lt;/b&gt; on line &lt;b&gt;90&lt;/b&gt;&lt;br 

/&gt;
&lt;br /&gt;
&lt;b&gt;Warning&lt;/b&gt;:  include() [&lt;a href='function.include'&gt;function.include&lt;/a&gt;]: Failed opening 

'/home/merahn/public_html/demo/wp-content/themes/santa-claus/template/alt.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in 

&lt;b&gt;/home/merahn/public_html/demo/wp-content/themes/santa-claus/index.php&lt;/b&gt; on line &lt;b&gt;90&lt;/b&gt;&lt;br /&gt;"></div>
		<!-- Loop END -->
				



<!-- Blank --><div style="height: 30px;"><img src="images/0.gif" alt="santa claus" title="santa claus"></div>
		
					<!-- index.php END -->
					
		</div>
		</div>
		</div>
		<!-- White END -->					
						
				</div></div></td>
				<td align="left" valign="top" width="335">
							
					<!-- sidebar.php START -->
					
									
					


<!-- begin widget -->
<div id="menu">


				<!-- Widget START -->
				<div class="widget1">
				<div class="widget2">
				<div class="widget3">
				<div class="widget4">
				<h3><span class="lightcolor"></span></h3>
				<div class="about"><div class="alignright"><img src="images/profile.gif" alt="profile"></div></div>
--, --, --, --, --, --, --, --, --, --.

<br><br><strong></strong>: <a href=""></a> | <a href=""> </a>				</div>
				</div>
				</div>
				</div>
				<!-- Widget END -->
				
				<!-- Widget START -->
				<div class="widget1">
				<div class="widget2">
				<div class="widget3">
				<div class="widget4">
				<h3><span class="lightcolor"></span></h3>
<li class="categories"></li>
<li class="categories"></li>
<li class="categories"></li>
<li class="categories">2010</li>
<li class="categories"> !!!</li>



<ul>				</div>
				</div>
				</div>
				</div>
				<!-- Widget END -->
				
				<!-- Widget START -->
				<div class="widget1">
				<div class="widget2">
				<div class="widget3">
				<div class="widget4">
				<h3><span class="lightcolor"></span></h3>
 		</div>
				</div>
				</div>
				</div>
				<!-- Widget END -->		



				<!-- Widget START -->
				<div class="widget1">
				<div class="widget2">
				<div class="widget3">
				<div class="widget4">
				<h3><span class="lightcolor"></span></h3>

				</div>
				</div>
				</div>
				</div>
				<!-- Widget END -->
				
														

</div>
<!-- end widget -->		

													
					<!-- sidebar.php END -->
						
				</td>
				</tr>
			</tbody></table>
		</div>
<!-- Grid for content and sidebar END -->									

<!-- Blank --><div style="height: 25px;"><img src="images/0.gif" alt="santa claus" title="santa claus"></div>

<!-- Footer START -->
<div id="footer1">
	<div id="footer2">
	<table class="footer3" border="0" cellpadding="0" cellspacing="0" height="78" width="990"><tbody><tr>
					
	<td align="left" valign="top" width="50%">
	<div class="footer4">
	 Ma)(on <a href="http://design-studio.at.ua/">design-studio.at.ua</a>, <a href="http://design-studio.at.ua">D.S</a>. $POWERED_BY$
	</div>
	</td>
					
	<td align="right" valign="top" width="50%">
	
	<table class="footer5" border="0" cellpadding="0" cellspacing="0" height="23">
	  <tbody><tr>
		<td align="left" valign="top"><div class="footer6"> </div></td>
		<td class="footer7" width="5">&nbsp;</td>
		<td align="center" valign="top"><div class="footer9">Singapore Movie</div></td>
		<td class="footer8" width="5">&nbsp;</td>
	  </tr>
	</tbody></table>

	</td>
	
	</tr></tbody></table>
	</div>
</div>	
<!-- Footer END -->


<!-- Dynamic page generated in 0.693 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2009-12-19 12:25:15 -->
<img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 1229px; top: -413px;"><img src="images/5.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 66.4972%; top: 800px;"><img src="images/0.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 62.5746%; top: 800px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 56.6065%; top: 800px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 1085.63px; top: 

719.328px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 79.8132%; top: 800px;"><img 

src="images/2.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 98.1156%; top: 800px;"><img src="images/4.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 31.5873%; top: 800px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 42.9235%; top: 800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

14.3084%; top: 800px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 882.841px; top: 683.28px;"><img 

src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 94.3811%; top: 800px;"><img src="images/0.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 7.14722%; top: 800px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 80.021%; top: 798.5px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

74.5261%; top: 800px;"><img src="images/2.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 50.4085%; top: 800px;"><img 

src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 43.5975%; top: 800px;"><img src="images/3.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 15.3311%; top: 800px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 76.7933%; top: 800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

95.6197%; top: 800px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 37.3995%; top: 800px;"><img 

src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 17.1943%; top: 800px;"><img src="images/3.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 11.2002%; top: 800px;"><img src="images/2.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 35.6974%; top: 800px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

86.0865%; top: 800px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 50.9279%; top: 798.5px;"><img 

src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 98.8636%; top: 800px;"><img src="images/1.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 96.9567%; top: 800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 67.4408%; top: 800px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

50.7026%; top: 798.5px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 3.18069%; top: 800px;"><img 

src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 48.5017%; top: 800px;"><img src="images/3.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 96.3201%; top: 800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 54.3877%; top: 800px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

90.7246%; top: 800px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 45.1594%; top: 800px;"><img 

src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 65.7037%; top: 800px;"><img src="images/1.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 38.3948%; top: 800px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 7.91388%; top: 800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

27.2196%; top: 800px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 81.4249%; top: 800px;"><img 

src="images/2.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 56.7304%; top: 799.25px;"><img src="images/1.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 51.6883%; top: 800px;"><img src="images/3.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 455.47px; top: 647.363px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 95.7577%; top: 799.25px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 24.7024%; top: 

800px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 42.4416%; top: 800px;"><img src="images/1.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 655.893px; top: 708.885px;"><img src="images/4.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 30.9306%; top: 800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 73.1434%; top: 800px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 98.1374%; top: 

800px;"><img src="images/2.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 97.4501%; top: 800px;"><img src="images/0.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 69.7743%; top: 800px;"><img src="images/5.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 88.2804%; top: 800px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 55.5065%; top: 800px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 19.4388%; top: 

800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 45.1873%; top: 800px;"><img src="images/4.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 10.4587%; top: 800px;"><img src="images/3.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 47.6749%; top: 800px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 19.4288%; top: 800px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 108.329px; top: 

672.047px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 63.8482%; top: 800px;"><img 

src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 75.901%; top: 800px;"><img src="images/4.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 72.3629%; top: 800px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 467.857px; top: 539.379px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

193.993px; top: -33.2428px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 99.6142px; top: 

-310.675px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 642.508px; top: -345.935px;"><img 

src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 763.486px; top: 24.5815px;"><img src="images/0.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 183.549px; top: 160.331px;"><img src="images/2.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 60.0085%; top: 800px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 243.849px; top: -3.30452px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 1100.85px; 

top: -322.312px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 1224.3px; top: 118.928px;"><img 

src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 904.188px; top: 205.648px;"><img src="images/3.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 851.561px; top: 608.982px;"><img src="images/1.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 839.528px; top: 435.706px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 75.2113%; top: 800px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 484.815px; top: 

131.482px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 1085px; top: -386px;"><img src="images/3.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 1168.11px; top: -256.667px;"><img src="images/2.png" style="position: absolute; 

width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 994px; top: -340px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 452.818px; top: -439.307px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 18.927%; top: 

800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 80.9332%; top: 800px;"><img src="images/1.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 756.943px; top: -3.54253px;"><img src="images/0.png" style="position: absolute; 

width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 496px; top: -443px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 16.5174px; top: -23.462px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 128.696px; top: 

31.2731px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 197.463px; top: -179.677px;"><img 

src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 672.855px; top: -601.293px;"><img src="images/2.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 768.474px; top: -173.89px;"><img src="images/2.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 902.428px; top: -376.236px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 

1px; z-index: 2; left: 933.735px; top: 175.715px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 736.2px; 

top: -433.288px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 367.695px; top: 62.865px;"><img 

src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 570.24px; top: 50.7373px;"><img src="images/1.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 706.395px; top: -257.202px;"><img src="images/1.png" style="position: absolute; 

width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 198.159px; top: -65.4121px;"><img src="images/3.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 62.1151%; top: 800px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

438.176px; top: 625.772px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 87.8074%; top: 800px;"><img 

src="images/3.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 421.384px; top: -373.578px;"><img src="images/1.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 564.577px; top: -390.768px;"><img src="images/4.png" style="position: absolute; 

width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 958.09px; top: -289.216px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; 

font-size: 1px; z-index: 2; left: 52.416%; top: 800px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

1188.96px; top: -167.775px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 971.751px; top: 

375.706px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 624px; top: -102px;"><img src="images/5.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 15.7754%; top: 800px;"><img src="images/2.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 13.5672%; top: 800px;"><img src="images/2.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; 

z-index: 2; left: 662.584px; top: -340.657px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 231.801px; 

top: -22.8901px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 510.142px; top: -14.2796px;"><img 

src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 619.199px; top: 770.096px;"><img src="images/2.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 17.0069px; top: 275.05px;"><img src="images/4.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 333.114px; top: -248.496px;"><img src="images/5.png" style="position: absolute; width: 5px; height: 5px; font-size: 

1px; z-index: 2; left: 42.4752%; top: 800px;"><img src="images/2.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 668.628px; top: 

-306.311px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 18.5909%; top: 800px;"><img 

src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 586px; top: -442px;"><img src="images/3.png" style="position: 

absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 126.445px; top: -53.7291px;"><img src="images/0.png" style="position: absolute; width: 5px; height: 

5px; font-size: 1px; z-index: 2; left: 20.4866%; top: 800px;"><img src="images/1.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 

694.652px; top: -13.264px;"><img src="images/4.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 86.6706%; top: 800px;"><img 

src="images/0.png" style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 50.8253px; top: -87.1533px;"><img src="images/5.png" 

style="position: absolute; width: 5px; height: 5px; font-size: 1px; z-index: 2; left: 1107.45px; top: 26.5275px;"><img src="images/2.png" style="position: absolute; width: 

5px; height: 5px; font-size: 1px; z-index: 2; left: 908.961px; top: 237.581px;"></body></html>

<!-- <popup> -->
<table border="0" cellpadding="2" cellspacing="1" style="background:#A9B8C2;" width="100%">
<tr><td style="background:#D4DFF7;" align="center"><b>[TITLE]</b></td></tr>
<tr><td align="center" style="background:#F4F4F4;padding:5px;">[BODY]</td></tr>
</table>
<!-- </popup> -->